home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / tool / otohime / src / lib / makefile < prev    next >
Makefile  |  1994-11-16  |  937b  |  43 lines

  1. lib = 386lib
  2. cc = run386 \hc386\bin\hcd386p
  3. cflags = -off Floating_point
  4. asm = 386asm
  5. aflags = -tc
  6.  
  7. otolib.lib : delay.obj fchan.obj hisin.obj interrpt.obj phase.obj smix.obj strns.obj szoom.obj trem.obj vchan.obj vibra.obj otolib.h otolib.lbc
  8.     $(lib) @otolib.lbc
  9.  
  10. delay.obj : delay.asm otolib.h
  11.     $(asm) $*.asm $(aflags)
  12.  
  13. fchan.obj : fchan.asm otolib.h
  14.     $(asm) $*.asm $(aflags)
  15.  
  16. hisin.obj : hisin.asm otolib.h
  17.     $(asm) $*.asm $(aflags)
  18.  
  19. interrpt.obj : interrpt.asm otolib.h
  20.     $(asm) $*.asm $(aflags)
  21.  
  22. phase.obj : phase.asm otolib.h
  23.     $(asm) $*.asm $(aflags)
  24.  
  25. smix.obj : smix.asm otolib.h
  26.     $(asm) $*.asm $(aflags)
  27.  
  28. strns.obj : strns.asm otolib.h
  29.     $(asm) $*.asm $(aflags)
  30.  
  31. szoom.obj : szoom.asm otolib.h
  32.     $(asm) $*.asm $(aflags)
  33.  
  34. trem.obj : trem.asm otolib.h
  35.     $(asm) $*.asm $(aflags)
  36.  
  37. vchan.obj : vchan.asm otolib.h
  38.     $(asm) $*.asm $(aflags)
  39.  
  40. vibra.obj : vibra.asm otolib.h
  41.     $(asm) $*.asm $(aflags)
  42.  
  43.